home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / e / explorer.lzh / sendexplorer.e < prev    next >
Text File  |  1995-12-20  |  217b  |  12 lines

  1. OPT MODULE
  2.  
  3. MODULE '*sendrexx'
  4.  
  5. CONST MAXLINE=256
  6.  
  7. EXPORT PROC sendExplorer(addr, obj, repPort=NIL)
  8.   DEF s[MAXLINE]:STRING
  9.   StringF(s, '"display $\h ''\s''"', addr, obj)
  10.   rx_SendMsg('EXPLORER', s, repPort)
  11. ENDPROC
  12.